home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / vol16n13.zip / OPENTR.ZIP / OT_SRC.ZIP / PAGEDLG.H < prev    next >
C/C++ Source or Header  |  1997-05-26  |  939b  |  41 lines

  1. // PageDlg.h : header file
  2. //
  3. // OpenTrap Version 1.00 by Gregory A. Wolking
  4. // Copyright ⌐ 1997 Ziff-Davis Publishing
  5. // First published in PC Magazine, US Edition, July 1997.
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CPageDlg dialog
  9.  
  10. class CPageDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14.     UINT m_intEndPage;
  15.     CPageDlg(CWnd* pParent = NULL);   // standard constructor
  16.  
  17. // Dialog Data
  18.     //{{AFX_DATA(CPageDlg)
  19.     enum { IDD = IDD_PAGE_DIALOG };
  20.     CStatic    m_lblPageRange;
  21.     UINT    m_intPageNum;
  22.     //}}AFX_DATA
  23.  
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CPageDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CPageDlg)
  37.     virtual BOOL OnInitDialog();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.